home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000279_slash_dev_slas…_2000@yahoo.com_Sun Mar 19 15:10:56 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!newsfeed.nyu.edu!newsfeed.cw.net!cw.net!news-FFM2.ecrc.de!news.glorb.com!postnews.google.com!j33g2000cwa.googlegroups.com!not-for-mail
  2. From: "Mark Sapiro" <slash_dev_slash_null_2000@yahoo.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: set host /pipe ssh
  5. Date: 16 Mar 2006 15:54:16 -0800
  6. Organization: http://groups.google.com
  7. Lines: 34
  8. Message-ID: <1142553256.070619.243070@j33g2000cwa.googlegroups.com>
  9. References: <%VURf.55781$_c.33211@tornado.tampabay.rr.com>
  10. NNTP-Posting-Host: 209.182.169.133
  11. Mime-Version: 1.0
  12. Content-Type: text/plain; charset="iso-8859-1"
  13. X-Trace: posting.google.com 1142553261 29358 127.0.0.1 (16 Mar 2006 23:54:21 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: Thu, 16 Mar 2006 23:54:21 +0000 (UTC)
  16. User-Agent: G2/0.2
  17. X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko/20060111 Netscape/8.1,gzip(gfe),gzip(gfe)
  18. Complaints-To: groups-abuse@google.com
  19. Injection-Info: j33g2000cwa.googlegroups.com; posting-host=209.182.169.133;
  20.    posting-account=iQNWIg0AAAAD2fStXNC9nwGlPdSqjWrI
  21. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15530
  22.  
  23. Randy wrote:
  24. >
  25. > I do a
  26. >
  27. > set host /pipe ssh vm@vm
  28. >
  29. > ssh ask's for the password but when I type it about 30 percent of the
  30. > characters are echoed back to my display. No matter what I type I can't get
  31. > it to accept the password. My entries seem to be going both to the password
  32. > prompt and to Kermit sometimes I get the ?Not a command or macro name: in
  33. > this state also.
  34. >
  35. > Basically can't get "set host /pipe" to work.
  36.  
  37.  
  38. I see the same thing if I do what you're doing. The echoed characters
  39. are being passed to and echoed by C-Kermit's command prompt and the
  40. unechoed characters are being passed to ssh's password: prompt. The two
  41. appear to be competing for your input and the results are
  42. unpredictable. Instead of /pipe, use /pty as in
  43.  
  44. set host /pty ssh vm@vm
  45.  
  46. or as I do
  47.  
  48. set host /pty ssh -e none -l user host.example.com
  49.  
  50. --
  51. (for email use this address please - you can figure it out)
  52.  
  53. Mark Sapiro msapiro at value net      Any clod can have the facts;
  54. San Francisco Bay Area, California    having opinions is an art. -
  55.                                       C. McCabe, The Fearless Spectator
  56.